home *** CD-ROM | disk | FTP | other *** search
/ Chip: 2001 Haziran / CHIP Haziran2001.iso / prog / haziran / 20 / setup.exe / {app} / plugins / XQ Yahoo Messenger 4.xpl < prev    next >
Encoding:
XSetup plugin  |  2001-03-28  |  1.4 KB  |  43 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="1"
  3. "COUNT"="2"
  4. "UIPATH"="Internet\Instant Messaging\Yahoo Messenger"
  5. "NAME"="Window Title"
  6. "VERSION"="1.20"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Main Window"
  9. "TEXT 2"="IM Windows"
  10. "DESCRIPTION 1"="You can change the title of the Yahoo! Messenger windows here."
  11. "DESCRIPTION 2"="The main window contains your friend list, and the IM window is what appears while you have a conversation."
  12. "DESCRIPTION 3"="NOTE: If you have Yahoo! Messenger open at the moment, you will need to close it so that the changes can take effect."
  13. "DESCRIPTION 4"="Yahoo! Messenger may be obtained at http://messenger.yahoo.com/."
  14. "AUTHOR"="Neil R. Turner (totalxs@hotmail.com) for Xteq Systems"
  15. "CONTACTURL"="http://www.neilrt.cwc.net/"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "COMMENT 1"="Fed up with Yahoo!? Try http://dmoz.org/."
  18.  
  19. sP="HKCR\TypeLib\{F0012D80-989C-11D3-B7C5-0090271D5CA7}\3.0\HELPDIR\@"
  20.  
  21. Sub Plugin_Initialize
  22.  s=RegReadValue(sP)
  23.  t=IniReadValue(s & "\cobrand.ini","APP TITLE","Caption")
  24.  Call SetUIElement(1,t)
  25.  t=IniReadValue(s & "\cobrand.ini","IM TITLE","Caption")
  26.  Call SetUIElement(2,t)
  27. End Sub
  28.  
  29. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  30.  t=GetUIElement(1)
  31.  s=RegReadValue(sP)
  32.  Call IniWriteValue(s & "\cobrand.ini","APP TITLE","Caption",t)
  33.  t=GetUIElement(2)
  34.  Call IniWriteValue(s & "\cobrand.ini","IM TITLE","Caption",t)
  35. End Sub
  36.  
  37.  
  38. Sub Plugin_Terminate 
  39. End Sub
  40.  
  41.  
  42.  
  43.